The HTML tag is used to show the title of a work that you are giving credit for. The reference might be shortened depending on the rules for pointing to sources in different situations.
The <cite> tag sets the title of a creative work (like a book, poem, song or movie). It also applies to paintings and sculptures.
HTML Example
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset ="UTF-8">
<!--This is our webpage it's our very first webpage-->
<title>Levoric | HTML Fundamentle Tutorial</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<!--Write your content here levoriclearn top degree online and program-->
<p>Albert Einstein once said,
<q>E=mc<sup>2</sup></q>
that is individual of the most legendary equatings in physics. This groundbreaking formula is from his paper published in 1905,
titled
<cite> the Electrodynamics of Moving Bodies</cite>.
</p>
<!--Write your content here levoriclearn top degree online and program-->
</body>
</html>